When I run the above python code, I get an error for the mvl_geopolyline function:
Traceback (most recent call last): File "test.py", line 43, in <module> vis = mv.mvl_geopolyline(latPos, lonPos, incr) AttributeError: module 'metview' has no attribute 'mvl_geopolyline'
3 Comments
Sarah-Jane Lock
Nov 25, 2020When I run the above python code, I get an error for the mvl_geopolyline function:
Traceback (most recent call last):
File "test.py", line 43, in <module>
vis = mv.mvl_geopolyline(latPos, lonPos, incr)
AttributeError: module 'metview' has no attribute 'mvl_geopolyline'
Sandor Kertesz
Nov 25, 2020Sarah-Jane Lock This function was introduced in version Metview 5.9.0. So e.g. metview/new should work for you.
Sarah-Jane Lock
Nov 25, 2020Perfect! Thank you